About Bill Payment
Electronic Bill Payment services that are aggregated, processed and routed through Bill Payment aggregators. Currently it supports two aggregators.
- MasterCard
- ACI Worldwide
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
Type Mandatory | Enum Valid Values:
|
ReferenceId Mandatory | String Sample Value: REF0000000002 |
TimeStamp | String Timestamp in the RFC3339 Format Sample Value: 2020-04-22T07:44:55-05:00 |
PurposeCode | String Sample Value: P101 |
Product Mandatory | String Sample Value: bizpay |
Program Mandatory | String Sample Value: PL |
InstructedAmount Mandatory |
|
FeeAmount |
|
TaxAmount |
|
DebtorAccount |
|
CreditorAccount |
|
MFP |
|
- cURL
- C#
- Go
- NodeJS
curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{
"method": "CustomerService.GetCustomer",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "67010",
"credential": "Basic Key"
},
"payload": {
"Type": "BILLPAY",
"ReferenceId": "XXXMW202106160000021",
"TimeStamp": "2020-06-16T07:44:55-05:00",
"Product": "LEDGER",
"Program": "PLCBWBANK",
"InstructedAmount": {
"Amount": 10000,
"Currency": "USD"
},
"DebtorAccount": {
"AccountNumber": "200643548027414",
"IdentificationType": "WALLET",
"Party": {
"KycId": "2"
}
},
"CreditorAccount": {
"AccountNumber": "55658885",
"CreditorAccountAgent": "ELECTRICITY & WATER AUTHORITY",
"Party": {
"Name": "RAJA"
}
}
}
}'
using System;
using RestSharp;
using System.Threading;
using System.Threading.Tasks;
namespace HelloWorldApplication {
class HelloWorld {
static async Task Main(string[] args) {
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""CustomerService.GetCustomer"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""keyId"": ""67010"",
" + "\n" +
@" ""credential"": ""Basic Key""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""Type"": ""BILLPAY"",
" + "\n" +
@" ""ReferenceId"": ""XXXMW202106160000021"",
" + "\n" +
@" ""TimeStamp"": ""2020-06-16T07:44:55-05:00"",
" + "\n" +
@" ""Product"": ""LEDGER"",
" + "\n" +
@" ""Program"": ""PLCBWBANK"",
" + "\n" +
@" ""InstructedAmount"": {
" + "\n" +
@" ""Amount"": 10000,
" + "\n" +
@" ""Currency"": ""USD""
" + "\n" +
@" },
" + "\n" +
@" ""DebtorAccount"": {
" + "\n" +
@" ""AccountNumber"": ""200643548027414"",
" + "\n" +
@" ""IdentificationType"": ""WALLET"",
" + "\n" +
@" ""Party"": {
" + "\n" +
@" ""KycId"": ""2""
" + "\n" +
@" }
" + "\n" +
@" },
" + "\n" +
@" ""CreditorAccount"": {
" + "\n" +
@" ""AccountNumber"": ""55658885"",
" + "\n" +
@" ""CreditorAccountAgent"": ""ELECTRICITY & WATER AUTHORITY"",
" + "\n" +
@" ""Party"": {
" + "\n" +
@" ""Name"": ""RAJA""
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
}
}
}
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "%7B%7BURL%7D%7D/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "CustomerService.GetCustomer",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"keyId": "67010",`+"
"+`
"credential": "Basic Key"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"Type": "BILLPAY",`+"
"+`
"ReferenceId": "XXXMW202106160000021",`+"
"+`
"TimeStamp": "2020-06-16T07:44:55-05:00",`+"
"+`
"Product": "LEDGER",`+"
"+`
"Program": "PLCBWBANK",`+"
"+`
"InstructedAmount": {`+"
"+`
"Amount": 10000,`+"
"+`
"Currency": "USD"`+"
"+`
},`+"
"+`
"DebtorAccount": {`+"
"+`
"AccountNumber": "200643548027414",`+"
"+`
"IdentificationType": "WALLET",`+"
"+`
"Party": {`+"
"+`
"KycId": "2"`+"
"+`
}`+"
"+`
},`+"
"+`
"CreditorAccount": {`+"
"+`
"AccountNumber": "55658885",`+"
"+`
"CreditorAccountAgent": "ELECTRICITY & WATER AUTHORITY",`+"
"+`
"Party": {`+"
"+`
"Name": "RAJA"`+"
"+`
}`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = "{\r\n \"method\": \"CustomerService.GetCustomer\",\r\n \"id\": \"1\",\r\n \"params\": {\r\n \"api\": {\r\n \"signature\": \"{{signature}}\",\r\n \"keyId\": \"67010\",\r\n \"credential\": \"Basic Key\"\r\n },\r\n \"payload\": {\r\n \"Type\": \"BILLPAY\",\r\n \"ReferenceId\": \"XXXMW202106160000021\",\r\n \"TimeStamp\": \"2020-06-16T07:44:55-05:00\",\r\n \"Product\": \"LEDGER\",\r\n \"Program\": \"PLCBWBANK\",\r\n \"InstructedAmount\": {\r\n \"Amount\": 10000,\r\n \"Currency\": \"USD\"\r\n },\r\n \"DebtorAccount\": {\r\n \"AccountNumber\": \"200643548027414\",\r\n \"IdentificationType\": \"WALLET\",\r\n \"Party\": {\r\n \"KycId\": \"2\"\r\n }\r\n },\r\n \"CreditorAccount\": {\r\n \"AccountNumber\": \"55658885\",\r\n \"CreditorAccountAgent\": \"ELECTRICITY & WATER AUTHORITY\",\r\n \"Party\": {\r\n \"Name\": \"RAJA\"\r\n }\r\n }\r\n}\r\n}";
req.write(postData);
req.end();
Body
{
"method": "TransactionService.Payment",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "6003",
"credential": "Basic bWVsdmluQG5ldHhkLmNvbTpBZG1pbkAxMjM="
},
"payload": {
"Type": "BILL_PAYMENT",
"ReferenceId": "REF0100000038",
"TimeStamp": "2020-04-22T07:44:55-05:00",
"PurposeCode": "P101",
"ProcessId": "PL0000001",
"Product": "PL",
"Program": "100000000005002",
"InstructedAmount": {
"Amount": 100,
"Currency": "USD"
},
"DebtorAccount": {
"AccountNumber": "200524894086671",
"InstitutionId": "101115302"
},
"CreditorAccount": {}
}
}
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
method Mandatory | String API name Constant : ledger.internal.transfer |
id Mandatory | String Unique ID for Request Example : 1 |
channel Mandatory | String Channel of transaction Example : INTERNAL |
transactionType Mandatory | String Type of transaction Constant : INTERNAL_TRANSFER |
product Mandatory | String Product in the transaction Example : DEV |
program Mandatory | String Program in the transaction Example : 200329026685021 |
transactionDateTime Mandatory | String Transaction timestamp (format YYYY-MM-DD-HH-MM-SS) Example : 2021-01-19 06:20:25 |
reference Mandatory | String Unique reference ID of transaction request Example : REF1617049508172:0 |
reason Optional | String Reason for the transaction Example : INTERNAL20210712100 |
transactionAmount. amount Mandatory | String Transaction amount Example : 200 |
transactionAmount. currency Mandatory | String Currency in the transaction Example : USD |
debtorAccount. identification Mandatory | String Debtor account number Example : 200112335076623 |
debtorAccount. identificationType Mandatory | String Debtor account type Example : ACCOUNT_NUMBER |
creditor. identification Mandatory | String Identification number of creditor Example : 200512645060836 |
creditor. identificationType Mandatory | String Creditor account type Example : ACCOUNT_NUMBER |
api.type Mandatory | String Type of transaction request in API Example : TRANSFER |
api.credential Mandatory | "Basic a2FydGhpays3MEB0ZXN0YmFuay5jb206ZjljM2IwYz dlMzc1ZjgxM2Y1ZTAyN2QxODM4YzA4MWRmY jEyMWFmZjYxZDk2YzA1NzQ=" |
api.signature Mandatory | "hpays3MEB0ZXN0YmFuay5jb206ZjljM2IwYzdlMzc1ZjgxM2 Y1ZTAyN2QxODM4YzA4MWRmYjEyMWFmZjYxZDk2Yz" |
api.apiKey Mandatory | "f9c3b0c7e375f813f5e027d1838c081dfb121aff61d96c0574" |
{
"id": "1",
"result": {
"status": "COMPLETED",
"timeStamp": "2020-04-22T07:44:55-0500",
"TransactionID": "81248",
"transactionNumber": "QA00000000010059",
"referenceID": "REF0100000038",
"processID": "PL0000001",
"transactionAmount": 100
}
}